翻訳と辞書
Words near each other
・ Exira, Iowa
・ Exireuil
・ Exis
・ Exis (EP)
・ Exis Interactive
・ EXist
・ Exist
・ Exist (song)
・ Exist Trace
・ Exista
・ Existence
・ Existence (Beto Vázquez Infinity album)
・ Existence (Dark Suns album)
・ Existence (disambiguation)
・ Existence (The X-Files)
Existence detection
・ Existence Genetics
・ Existence Is Futile
・ Existence of God
・ Existence precedes essence
・ Existence theorem
・ Existence value
・ Existensminimum
・ Existentia
・ Existential clause
・ Existential counselling
・ Existential crisis
・ Existential fallacy
・ Existential generalization
・ Existential graph


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Existence detection : ウィキペディア英語版
Existence detection

Existence checking or existence detection is an important aspect of many computer programs. An existence check before reading a file can catch and/or prevent a fatal error, for instance. For that reason, most programming language libraries contain a means of checking whether a file exists.
An existence check can sometimes involve a "brute force" approach of checking all records for a given identifier, as in this Microsoft Excel Visual Basic for Applications code for detecting whether a worksheet exists:

Function SheetExists(sheetName As String) As Boolean
Dim sheetCount As Integer
Dim t As Integer
SheetExists = False
sheetCount = ActiveWorkbook.SheetsCount
For t = 1 To sheetCount
If Sheets(t).Name = sheetName Then
SheetExists = True
Exit Function
End If
Next t
End Function

==References==


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Existence detection」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.